From: Leo Liu Date: Tue, 7 May 2013 04:53:31 +0000 (+0800) Subject: * progmodes/octave.el (octave-smie-forward-token): Fix typo. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~3615^2~272 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=150194c32f69feee7aae11d4ef21e8034d48b136;p=emacs.git * progmodes/octave.el (octave-smie-forward-token): Fix typo. --- diff --git a/lisp/progmodes/octave.el b/lisp/progmodes/octave.el index 7e14e59af5f..138c1948131 100644 --- a/lisp/progmodes/octave.el +++ b/lisp/progmodes/octave.el @@ -373,7 +373,7 @@ Non-nil means always go to the next Octave code line after sending." ((and (looking-at "[%#\n]") (not (or (save-excursion (skip-chars-backward " \t") ;; Only add implicit ; when needed. - (or (bolp) (eq (char-before ?\;)))) + (or (bolp) (eq (char-before) ?\;))) ;; Ignore it if it's within parentheses. (let ((ppss (syntax-ppss))) (and (nth 1 ppss)